/*
	FLORIDA CULTURAL HERITAGE CENTER — LANDING PAGE
	Page-specific stylesheet, loaded only on the Cultural Center page via
	cultural-center-header.html (page HEADER field). Reuses the site's navy
	tokens from css/main.css (:root) but layers a terracotta/gold accent —
	pulled straight from the museum's own gallery walls and gilded frames —
	so this page reads as a museum, distinct from the clinic landing page.

	INDEX
		- HERO
		- HIGHLIGHTS STRIP
		- ABOUT
		- HISTORY / FOUNDER QUOTE
		- THE BUILDINGS
		- COLLECTIONS + GALLERY SWIPER
		- MANAGEMENT TEAM
		- COOPERATING ORGANIZATION
		- CONTACT CTA BAND
*/

.fch-page { overflow-x: hidden; }

/*-----------------------------------------------------------  HERO  ----------------------------*/

.fch-hero {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	background: linear-gradient(135deg, #6e2b20 0%, #8c3a2b 60%, #a6492f 100%);
}

.fch-hero-text {
	flex: 1 1 440px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 5%;
	color: var(--color_cl);
}

.fch-hero-img {
	flex: 1 1 440px;
	min-height: 320px;
}

.fch-hero-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fch-kicker {
	font-family: "Playfair Display", "Playfair", serif;
	font-style: italic;
	font-size: clamp(16px, 2vw, 20px);
	color: #e8c465;
	margin: 0 0 8px;
}

.fch-hero h1 {
	font-family: "Playfair Display", "Playfair", serif;
	font-weight: 700;
	color: #fff;
	font-size: clamp(32px, 4vw, 46px);
	margin: 0 0 18px;
}

.fch-hero-lede {
	max-width: 480px;
	margin: 0 0 30px;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.7;
	color: var(--color_cl);
}

.fch-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.fch-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 30px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.2s ease;
}

.fch-btn-solid {
	background: #e8c465;
	color: #6e2b20;
}
.fch-btn-solid:hover { background: #fff; color: #6e2b20; }

.fch-btn-outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.6);
}
.fch-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

@media screen and (max-width: 879px) {
	.fch-hero-text, .fch-hero-img { flex-basis: 100%; }
	.fch-hero-img { order: -1; min-height: 260px; }
	.fch-hero-text { text-align: center; align-items: center; }
	.fch-hero-lede { margin-left: auto; margin-right: auto; }
	.fch-hero-cta { justify-content: center; }
}

/*-----------------------------------------------------------  HIGHLIGHTS STRIP  ----------------*/

.fch-highlights {
	display: flex;
	flex-wrap: wrap;
	background: #4a1d16;
}

.fch-highlight {
	flex: 1 1 220px;
	text-align: center;
	padding: 30px 20px;
	border-right: 1px solid rgba(255,255,255,0.12);
}

.fch-highlight:last-child { border-right: none; }

.fch-highlight-num {
	display: block;
	font-family: "Playfair Display", "Playfair", serif;
	font-weight: 700;
	font-size: clamp(22px, 2.4vw, 28px);
	color: #e8c465;
	margin-bottom: 8px;
}

.fch-highlight-label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--color_cl);
	line-height: 1.5;
}

/*-----------------------------------------------------------  ABOUT  ---------------------------*/

.fch-about {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 5%;
	text-align: center;
}

.fch-about h2 {
	color: var(--color_p);
	font-size: clamp(24px, 2.6vw, 30px);
	margin-bottom: 20px;
}

.fch-about p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--color_ad);
	margin-bottom: 16px;
}

/*-----------------------------------------------------------  HISTORY / FOUNDER QUOTE  ---------*/

.fch-history {
	background: var(--color_cl);
	padding: 60px 5%;
	/* max-width: 860px; */
	margin: 0 auto;
}

.fch-quote {
	position: relative;
	padding: 10px 0 10px 30px;
	border-left: 4px solid #8c3a2b;
	margin-bottom: 30px;
}

.fch-quote p {
	font-family: "Playfair Display", "Playfair", serif;
	font-style: italic;
	font-size: clamp(19px, 2.2vw, 24px);
	line-height: 1.6;
	color: var(--color_p);
	margin: 0 0 12px;
}

.fch-quote-cite {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--color_muted);
}

.fch-history > p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color_ad);
}

/*-----------------------------------------------------------  THE BUILDINGS  --------------------*/

.fch-buildings { padding: 20px 5% 40px; }

.fch-building {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto 50px;
}

.fch-building:last-child { margin-bottom: 0; }

.fch-building-reverse { flex-direction: row-reverse; }

.fch-building-img {
	flex: 1 1 380px;
}

.fch-building-img img {
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
	box-shadow: 0 16px 40px rgba(51, 68, 104, 0.12);
}

.fch-building-text {
	flex: 1 1 380px;
}

.fch-building-text h3 {
	font-family: "Playfair Display", "Playfair", serif;
	color: #8c3a2b;
	font-size: clamp(22px, 2.4vw, 26px);
	margin: 0 0 14px;
}

.fch-building-text p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--color_ad);
	margin-bottom: 14px;
}

@media screen and (max-width: 879px) {
	.fch-building, .fch-building-reverse { flex-direction: column; }
	.fch-building-img img { height: 240px; }
}

/*-----------------------------------------------------------  COLLECTIONS + GALLERY SWIPER  ----*/

.fch-collections {
	background: var(--color_cl);
	padding: 60px 5%;
	text-align: center;
}

.fch-collections h2 {
	color: var(--color_p);
	font-size: clamp(24px, 2.6vw, 30px);
	margin-bottom: 20px;
}

.fch-collections > p {
	max-width: 900px;
	margin: 0 auto 16px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--color_ad);
	text-align: left;
}

.fch-gallery-swiper {
	position: relative;
	max-width: 1100px;
	margin: 34px auto 20px;
	overflow: hidden;
}

.fch-gallery-swiper .swiper-slide {
	height: 300px;
	overflow: hidden;
	border-radius: 4px;
}

.fch-gallery-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: pointer;
	transition: transform 0.4s ease;
}

.fch-gallery-swiper .swiper-slide:hover img {
	transform: scale(1.04);
}

.fch-gallery-swiper .swiper-button-prev,
.fch-gallery-swiper .swiper-button-next {
	width: 42px;
	height: 42px;
	background: #8c3a2b;
	border-radius: 50%;
	color: #fff;
	transition: background 0.2s ease;
}

.fch-gallery-swiper .swiper-button-prev:hover,
.fch-gallery-swiper .swiper-button-next:hover {
	background: #6e2b20;
}

.fch-gallery-swiper .swiper-button-prev::after,
.fch-gallery-swiper .swiper-button-next::after {
	font-size: 16px;
	font-weight: 700;
}

@media screen and (max-width: 879px) {
	.fch-gallery-swiper .swiper-slide { height: 200px; }
}

.fch-collections-note {
	max-width: 700px;
	margin: 20px auto 0;
	font-size: 14px;
	color: var(--color_muted);
	text-align: center !important;
}

/*-----------------------------------------------------------  FEATURED IN THE PRESS  ------------*/

.fch-media {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 5%;
	text-align: center;
}

.fch-media h2 {
	color: var(--color_p);
	font-size: clamp(24px, 2.6vw, 30px);
	margin-bottom: 34px;
}

.fch-video-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.fch-video-card {
	flex: 1 1 380px;
	max-width: 460px;
	text-align: left;
}

.fch-video-frame {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	box-shadow: 0 16px 40px rgba(51, 68, 104, 0.12);
}

.fch-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.fch-video-caption {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color_ad);
}

.fch-video-caption span {
	color: var(--color_muted);
	font-weight: 600;
}

/*-----------------------------------------------------------  MANAGEMENT TEAM  ------------------*/

.fch-team {
	padding: 60px 5%;
}

.fch-team h2 {
	text-align: center;
	color: var(--color_p);
	font-size: clamp(24px, 2.6vw, 30px);
	margin-bottom: 40px;
}

.fch-team-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.fch-team-card {
	flex: 1 1 220px;
	max-width: 260px;
	background: #fff;
	text-align: center;
	padding: 26px 18px;
	box-shadow: 0 12px 30px rgba(51, 68, 104, 0.08);
	border-bottom: 3px solid #e8c465;
}

.fch-team-avatar {
	width: 58px;
	height: 58px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: #f7e9c8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fch-team-avatar i {
	font-size: 22px;
	color: #8c3a2b;
}

.fch-team-name {
	font-family: "Playfair Display", "Playfair", serif;
	font-weight: 700;
	color: var(--color_p);
	font-size: 16px;
	margin-bottom: 6px;
}

.fch-team-role {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--color_muted);
	margin-bottom: 10px;
}

.fch-team-contact {
	font-size: 12px;
	line-height: 1.6;
	color: var(--color_ad);
}

.fch-team-contact a { color: #8c3a2b; }

/*-----------------------------------------------------------  COOPERATING ORGANIZATION  ---------*/

.fch-cooperating {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px 5% 60px;
	text-align: center;
}

.fch-cooperating h3 {
	color: var(--color_ad);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 18px;
}

.fch-pill-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 20px;
}

.fch-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 600;
	color: #8c3a2b;
	border: 1px solid #e8c465;
	border-radius: 30px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.fch-pill:hover { background: #f7e9c8; }

.fch-music-link {
	font-size: 14px;
	color: var(--color_muted);
}

.fch-music-link a { color: #8c3a2b; }

/*-----------------------------------------------------------  CONTACT CTA BAND  ----------------*/

.fch-cta {
	background: linear-gradient(135deg, #4a1d16 0%, #6e2b20 100%);
	color: #fff;
	text-align: center;
	padding: 54px 5%;
}

.fch-cta h2 {
	color: #fff;
	font-family: "Playfair Display", "Playfair", serif;
	font-size: clamp(24px, 2.6vw, 30px);
	margin-bottom: 10px;
}

.fch-cta p {
	font-size: 17px;
	margin-bottom: 26px;
	color: var(--color_cl);
}

.fch-cta p a { color: #fff; }

.fch-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
